home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 301-325 / disk_319 / cnewssrc / cnews.orig.lzh / relay / trbatch.h < prev   
C/C++ Source or Header  |  1989-06-27  |  372b  |  18 lines

  1. /*
  2.  * interface to the transmit batch files
  3.  */
  4.  
  5. struct batchfile {
  6. #ifdef notdef
  7.     int bf_ref;            /* reference count */
  8. #endif
  9.     FILE *bf_str;            /* stream */
  10.     char *bf_name;            /* file name */
  11.     int bf_lines;            /* until fflush */
  12. };
  13.  
  14. /* imports from trbatch.c */
  15. extern struct batchfile *bfopen(), *bfisopen();
  16. extern statust bffkclose(), bfrealclose();
  17. extern int bfflush();
  18.